home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML Instance.sea / XML Instance / Required / plugins / HTMLWindow.jar / horst / ComboBoxItem.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-03-18  |  682 b   |  19 lines

  1. package horst;
  2.  
  3. import horst.parser.Tag;
  4. import java.util.Hashtable;
  5.  
  6. public class ComboBoxItem {
  7.    Hashtable m_atts;
  8.    String m_text;
  9.  
  10.    public ComboBoxItem(Tag t) {
  11.       this.m_atts = t.getAttributesCopy();
  12.       this.m_text = "";
  13.    }
  14.  
  15.    public String toString() {
  16.       return this.m_text;
  17.    }
  18. }
  19.